This ensures the popover will follow the new position parameters. This is
necessary for popovers like the text magnifier that can be repositioned
while visible.
priv->has_pointing_to = FALSE;
g_object_notify_by_pspec (G_OBJECT (popover), properties[PROP_POINTING_TO]);
+
+ if (gtk_widget_is_visible (GTK_WIDGET (popover)))
+ present_popup (popover);
}
/**
priv->final_position = position;
g_object_notify_by_pspec (G_OBJECT (popover), properties[PROP_POSITION]);
+
+ if (gtk_widget_is_visible (GTK_WIDGET (popover)))
+ present_popup (popover);
}
/**